iT邦幫忙

2023 iThome 鐵人賽

DAY 9
0
自我挑戰組

CPE 49題訓練系列 第 9

YKL16.UVA272 TeX Quotes YKL18.UVA10038 Jolly Jumpers

  • 分享至 

  • xImage
  •  

TeX Quotes

arr=[]
while 1:
	try:
		arr.append(list(input()))
	except:
		break
c=0
for i in range(len(arr)):
	for j in range(len(arr[i])):
		if arr[i][j]=='"' and c==0:
			arr[i][j]='``'
			c=1
		elif arr[i][j]=='"' and c==1:
			arr[i][j]="''"
			c=0
		print(arr[i][j],end="")
	print()

Jolly Jumpers

while 1:
	try:
		a=list(map(int,input().split()))
		a=a[1:]
		ans=[]
		c=0
		for i in range(len(a)-1):
			ans.append(abs(a[i]-a[i+1]))
		ans=sorted(ans)
		for i in range(len(ans)):
			if (i+1)!=ans[i]:
				c=1
				break
		if c==0:
			print('Jolly')
		else:
			print('Not jolly')	
	except:
		break

上一篇
YKL42.UVA490 Rotating Sentences
下一篇
YKL37.UVA10056 What is the Probability? YKL12.UVA10170 The Hotel with Infinite Rooms
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言